/******************************************************************************* * Copyright (c) 2003, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.ant.tests.ui.editor.support; import org.eclipse.ant.internal.ui.model.IProblem; import org.eclipse.ant.internal.ui.model.IProblemRequestor; public class TestProblemRequestor implements IProblemRequestor { /* * (non-Javadoc) * * @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#acceptProblem(org.eclipse.ant.internal.ui.editor.outline.IProblem) */ @Override public void acceptProblem(IProblem problem) { // do nothing } /* * (non-Javadoc) * * @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#beginReporting() */ @Override public void beginReporting() { // do nothing } /* * (non-Javadoc) * * @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#endReporting() */ @Override public void endReporting() { // do nothing } }